6c72909e35cd15114c22f0827fe7c64060d5ef72,app/src/main/java/jc/sky/view/SKYActivity.java,SKYActivity,showContent,#,275
Before Change
*********************/
@Override public void showContent() {
SKYHelper.methodsProxy().layoutInterceptor().showContent(this);
if (SKYBuilder != null) {
SKYBuilder.layoutContent();
}
After Change
*********************/
@Override public void showContent() {
if(SKYHelper.methodsProxy().layoutInterceptor() != null) {
SKYHelper.methodsProxy().layoutInterceptor().showContent(this);
}
if (SKYBuilder != null) {
SKYBuilder.layoutContent();